home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / xlib03.zip / XLINE.H < prev    next >
Text File  |  1993-04-05  |  1KB  |  42 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XLINE - header file
  4. ;
  5. ;
  6. ;
  7. ; ****** XLIB - Mode X graphics library                ****************
  8. ; ******                                               ****************
  9. ; ****** Written By Themie Gouthas                     ****************
  10. ; ****** Aeronautical Research Laboratory              ****************
  11. ; ****** Defence Science and Technology Organisation   ****************
  12. ; ****** Australia                                     ****************
  13. ;
  14. ; egg@dstos3.dsto.gov.au
  15. ; teg@bart.dsto.gov.au
  16. ;
  17. ;  Terminology & notes:
  18. ;         VRAM ==   Video RAM
  19. ;         SRAM ==   System RAM
  20. ;         X coordinates are in pixels unless explicitly stated
  21. ;
  22. ;----------------------------------------------------------------------*/
  23.  
  24. #ifndef _XLINE_H_
  25. #define _XLINE_H_
  26.  
  27.  
  28. /* FUNCTIONS =========================================================== */
  29.  
  30. extern void x_line(     /* Draw a line, what else */
  31.          WORD x0,
  32.          WORD y0,
  33.          WORD x1,
  34.          WORD y1,
  35.          WORD color,
  36.          WORD PageBase);
  37.  
  38.  
  39. #endif
  40.  
  41.  
  42.